home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 264_01 / vis.doc < prev    next >
Text File  |  1980-01-01  |  1KB  |  27 lines

  1. VIS
  2.  
  3. Purpose
  4. visual display of files
  5.  
  6. Syntax
  7. vis [-et] [file...]
  8.  
  9. Comments
  10. Vis displays the contents of the specified files, or of standard input
  11. if no files are specified or when the special filename "-" is
  12. encountered.  Non-printable characters are made visible by displaying
  13. them in the following format.  For characters with a value of greater
  14. than 127 (i.e.  the high bit is set; these are known as metacharacters),
  15. the string "M-" is displayed followed by the character with a value of
  16. 128 less (i.e.  with the high bit reset).  For characters with values of
  17. less than 32 (control characters), except for newline and tab (see
  18. below), the character '^' is displayed followed by the character with a
  19. value of 64 more (i.e.  '@' or a capital letter).  The DEL character
  20. (value of 127) is displayed as "^?".  For characters in the range
  21. 128-157 (control characters with the high bit set), both "M-" and "^"
  22. will be displayed. 
  23.  
  24. Options
  25. -e    show the ends of lines as '$'
  26. -t    don't treat tabs specially; show them as '^I'
  27.